home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from gettext import gettext as _
- from checkbox.lib.cache import cache
- from checkbox.plugin import Plugin
-
- class GatherPrompt(Plugin):
-
- def register(self, manager):
- super(GatherPrompt, self).register(manager)
- self._manager.reactor.call_on('prompt-gather', self.prompt_gather)
-
-
- def prompt_gather(self, interface):
- interface.show_wait(_('Gathering information from your system...'), self._manager.reactor.fire, 'gather')
-
- prompt_gather = cache(prompt_gather)
-
- factory = GatherPrompt
-